What is hookable?
The 'hookable' npm package provides a way to create and manage hooks in JavaScript applications. Hooks are functions that can be registered and executed at certain points in your application, allowing for extensibility and customization.
What are hookable's main functionalities?
Creating and Registering Hooks
This feature allows you to create and register hooks. In the example, a hook named 'myHook' is created and a function is registered to it. When 'myHook' is called, the registered function is executed.
const { Hookable } = require('hookable');
const hooks = new Hookable();
hooks.hook('myHook', async () => {
console.log('Hook executed!');
});
hooks.callHook('myHook');
Adding Multiple Handlers to a Hook
This feature allows you to add multiple handlers to a single hook. In the example, two handlers are registered to 'myHook'. When 'myHook' is called, both handlers are executed in the order they were registered.
const { Hookable } = require('hookable');
const hooks = new Hookable();
hooks.hook('myHook', async () => {
console.log('First handler executed!');
});
hooks.hook('myHook', async () => {
console.log('Second handler executed!');
});
hooks.callHook('myHook');
Passing Arguments to Hooks
This feature allows you to pass arguments to hooks. In the example, a message is passed to 'myHook' when it is called, and the registered handler logs the message to the console.
const { Hookable } = require('hookable');
const hooks = new Hookable();
hooks.hook('myHook', async (message) => {
console.log(message);
});
hooks.callHook('myHook', 'Hello, world!');
Handling Errors in Hooks
This feature allows you to handle errors that occur in hooks. In the example, an error is thrown in the registered handler for 'myHook'. The error is caught and logged to the console when 'myHook' is called.
const { Hookable } = require('hookable');
const hooks = new Hookable();
hooks.hook('myHook', async () => {
throw new Error('Something went wrong!');
});
hooks.callHook('myHook').catch(err => {
console.error(err.message);
});
Other packages similar to hookable
tapable
Tapable is a similar package that provides a way to create and manage hooks. It is used internally by webpack to allow plugins to extend its functionality. Compared to hookable, tapable offers a more extensive API and is designed to handle more complex use cases.
mitt
Mitt is a tiny functional event emitter. While it is not specifically designed for hooks, it can be used to achieve similar functionality by emitting and listening to events. Mitt is simpler and more lightweight compared to hookable.
eventemitter3
EventEmitter3 is a high-performance event emitter. Like mitt, it is not specifically designed for hooks but can be used to create and manage hooks by emitting and listening to events. EventEmitter3 is known for its performance and is more feature-rich compared to mitt.
Hookable
Awaitable hooks system.
Install
Using yarn:
yarn add hookable
Using npm:
npm install hookable
Usage
Method A: Create a hookable instance:
import { createHooks } from 'hookable'
const hooks = createHooks()
hooks.hook('hello', () => { console.log('Hello World' )})
hooks.callHook('hello')
Method B: Extend your base class from Hookable:
import { Hookable } from 'hookable'
export default class FooLib extends Hookable {
constructor() {
super()
}
async someFunction() {
await this.callHook('hook1')
}
}
Inside plugins, register for any hook:
const lib = new FooLib()
lib.hook('hook2', async () => { })
lib.addHooks({
hook1: async () => { },
hook2: [ ]
})
Unregistering hooks:
const lib = new FooLib()
const hook0 = async () => { }
const hook1 = async () => { }
const hook2 = async () => { }
const unregisterHook0 = lib.hook('hook0', hook0)
const unregisterHooks1and2 = lib.addHooks({ hook1, hook2 })
unregisterHook0()
unregisterHooks1and2()
lib.removeHooks({ hook0, hook1 })
lib.removeHook('hook2', hook2)
Triggering a hook handler once:
const lib = new FooLib()
const unregister = lib.hook('hook0', async () => {
unregister()
})
Hookable class
constructor()
hook (name, fn)
Register a handler for a specific hook. fn
must be a function.
Returns an unregister
function that, when called, will remove the registered handler.
hookOnce (name, fn)
Similar to hook
but unregisters hook once called.
Returns an unregister
function that, when called, will remove the registered handler before first call.
addHooks(configHooks)
Flatten and register hooks object.
Example:
hookable.addHooks({
test: {
before: () => {},
after: () => {}
}
})
This registers test:before
and test:after
hooks at bulk.
Returns an unregister
function that, when called, will remove all the registered handlers.
async callHook (name, ...args)
Used by class itself to sequentially call handlers of a specific hook.
callHookWith (name, callerFn)
If you need custom control over how hooks are called, you can provide a custom function that will receive an array of handlers of a specific hook.
callerFn
if a callback function that accepts two arguments, hooks
and args
:
hooks
: Array of user hooks to be calledargs
: Array of arguments that should be passed each time calling a hook
deprecateHook (old, name)
Deprecate hook called old
in favor of name
hook.
deprecateHooks (deprecatedHooks)
Deprecate all hooks from an object (keys are old and values or newer ones).
removeHook (name, fn)
Remove a particular hook handler, if the fn
handler is present.
removeHooks (configHooks)
Remove multiple hook handlers.
Example:
const handler = async () => { }
hookable.hook('test:before', handler)
hookable.addHooks({ test: { after: handler } })
hookable.removeHooks({
test: {
before: handler,
after: handler
}
})
removeAllHooks
Remove all hook handlers.
beforeEach (syncCallback)
Registers a (sync) callback to be called before each hook is being called.
hookable.beforeEach((event) => { console.log(`${event.name} hook is being called with ${event.args}`)}`)
hookable.hook('test', () => { console.log('running test hook') })
// test hook is being called with []
// running test hook
await hookable.callHook('test')
afterEach (syncCallback)
Registers a (sync) callback to be called after each hook is being called.
hookable.afterEach((event) => { console.log(`${event.name} hook called with ${event.args}`)}`)
hookable.hook('test', () => { console.log('running test hook') })
// running test hook
// test hook called with []
await hookable.callHook('test')
createDebugger
Automatically logs each hook that is called and how long it takes to run.
const debug = hookable.createDebugger(hooks, { tag: 'something' })
hooks.callHook('some-hook', 'some-arg')
debug.close()
Migration
From 4.x
to 5.x
- Type checking improved. You can use
Hookable<T>
or createHooks<T>()
to provide types interface (c2e1e22) - We no longer provide an IE11 compatible umd build. Instead, you should use an ESM-aware bundler such as webpack or rollup to transpile if needed.
- Logger param is dropped. We use
console.warn
by default for deprecated hooks. - Package now uses named exports. You should import
{ Hookable }
instead of Hookable
or use new createHooks
util mergeHooks
util is exported standalone. You should replace Hookable.mergeHooks
and this.mergeHooks
with new { mergeHooks }
export- In versions < 5.0.0 when using
callHook
if an error happened by one of the hook callbacks, we was handling errors globally and call global error
hook + console.error
instead and resolve callHook
promise! This sometimes makes confusing behavior when we think code worked but it didn't. v5 introduced a breaking change that when a hook throws an error, callHook
also rejects instead of a global error
event. This means you should be careful to handle all errors when using callHook
now.
Credits
Extracted from Nuxt hooks system originally introduced by Sébastien Chopin
Thanks to Joe Paice for donating hookable package name.
License
MIT - Made with 💖